home *** CD-ROM | disk | FTP | other *** search
- package javax.swing.text;
-
- public class Segment {
- public char[] array;
- public int offset;
- public int count;
-
- public Segment() {
- this.array = null;
- this.offset = 0;
- this.count = 0;
- }
-
- public Segment(char[] var1, int var2, int var3) {
- this.array = var1;
- this.offset = var2;
- this.count = var3;
- }
-
- public String toString() {
- return this.array != null ? new String(this.array, this.offset, this.count) : new String();
- }
- }
-